def summe(a, b, c = 0, d = 0):
    return a + b + c + d

x = summe(1, 2)
print(x)

x = summe(1, 2, 3)
print(x)

x = summe(1, 2, 3, 4)
print(x)
